home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / Apache 1.0 / support / httpd.1m < prev    next >
Text File  |  1995-12-04  |  4KB  |  109 lines

  1. .TH httpd 1m "October 1995"
  2. .\" Copyright (c) 1995 David Robinson. All rights reserved.
  3. .\"
  4. .\" Redistribution and use in source and binary forms, with or without
  5. .\" modification, are permitted provided that the following conditions
  6. .\" are met:
  7. .\"
  8. .\" 1. Redistributions of source code must retain the above copyright
  9. .\"    notice, this list of conditions and the following disclaimer. 
  10. .\"
  11. .\" 2. Redistributions in binary form must reproduce the above copyright
  12. .\"    notice, this list of conditions and the following disclaimer in
  13. .\"    the documentation and/or other materials provided with the
  14. .\"    distribution.
  15. .\"
  16. .\" 3. All advertising materials mentioning features or use of this
  17. .\"    software must display the following acknowledgment:
  18. .\"    "This product includes software developed by the Apache Group
  19. .\"    for use in the Apache HTTP server project (http://www.apache.org/)."
  20. .\"
  21. .\" 4. The names "Apache Server" and "Apache Group" must not be used to
  22. .\"    endorse or promote products derived from this software without
  23. .\"    prior written permission.
  24. .\"
  25. .\" 5. Redistributions of any form whatsoever must retain the following
  26. .\"    acknowledgment:
  27. .\"    "This product includes software developed by the Apache Group
  28. .\"    for use in the Apache HTTP server project (http://www.apache.org/)."
  29. .\"
  30. .\" THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY
  31. .\" EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  32. .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  33. .\" PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE APACHE GROUP OR
  34. .\" IT'S CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  35. .\" SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  36. .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  37. .\" LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  38. .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  39. .\" STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  40. .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  41. .\" OF THE POSSIBILITY OF SUCH DAMAGE.
  42. .\" ====================================================================
  43. .\"
  44. .\" This software consists of voluntary contributions made by many
  45. .\" individuals on behalf of the Apache Group and was originally based
  46. .\" on public domain software written at the National Center for
  47. .\" Supercomputing Applications, University of Illinois, Urbana-Champaign.
  48. .\" For more information on the Apache Group and the Apache HTTP server
  49. .\" project, please see <http://www.apache.org/>.
  50. .SH NAME
  51. httpd \- Apache hypertext transfer protocol server
  52. .SH SYNOPSIS
  53. .B httpd 
  54. [
  55. .B \-vX?
  56. ] [
  57. .BI \-d " serverroot"
  58. ] [
  59. .BI \-f " config"
  60. ]
  61. .SH DESCRIPTION
  62. .B httpd
  63. is the Apache HyperText Transfer Protocol (HTTP) server process. The server may
  64. be invoked by the Internet daemon inetd(1M) each time a connection to the
  65. HTTP service is made, or alternatively it may run as a daemon.
  66. .SH OPTIONS
  67. .TP 12
  68. .BI \-d " serverroot"
  69. Set the initial value for the ServerRoot variable to \fIserverroot\fP. This
  70. can be overridden by the ServerRoot command in the configuration file. The
  71. default is \fB/usr/local/etc/httpd\fP.
  72. .TP
  73. .BI \-f " config"
  74. Execute the commands in the file \fIconfig\fP on startup. If \fIconfig\fP
  75. does not begin with a /, then it is taken to be a path relative to
  76. the ServerRoot. The default is \fBconf/httpd.conf\fP.
  77. .TP
  78. .B \-X
  79. Run in single-process mode, for internal debugging purposes only; the daemon
  80. does not detach from the terminal or fork any children. Do NOT use this mode
  81. to provide ordinary web service.
  82. .TP
  83. .B \-v
  84. Print the version of httpd, and then exit.
  85. .TP
  86. .B \-?
  87. Print a list of the httpd options, and then exit.
  88. .SH FILES
  89. .PD 0
  90. .B /usr/local/etc/httpd/conf/httpd.conf
  91. .br
  92. .B /usr/local/etc/httpd/conf/srm.conf
  93. .br
  94. .B /usr/local/etc/httpd/conf/access.conf
  95. .br
  96. .B /usr/local/etc/httpd/conf/mime.types
  97. .br
  98. .B /usr/local/etc/httpd/logs/error_log
  99. .br
  100. .B /usr/local/etc/httpd/logs/access_log
  101. .br
  102. .B /usr/local/etc/httpd/logs/httpd.pid
  103. .PD
  104. .SH SEE ALSO
  105. .BR inetd (1m).
  106. .PP
  107. Documentation for the Apache http server is available from
  108. http://www.apache.org
  109.